home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Linux
/
SLAX 6.0.8
/
slax-6.0.8.iso
/
slax
/
tools
/
dir2lzm
< prev
next >
Wrap
Text File
|
2008-11-21
|
484b
|
20 lines
#!/bin/bash
# convert directory tree into .lzm compressed file
# which can be used as a LiveCD module
#
# Author: Tomas M. <http://www.linux-live.org>
#
PATH=.:$(dirname $0):/usr/lib:$PATH
. liblinuxlive || exit 1
if [ ! -d "$1" -o "$2" = "" ]; then
echo
echo "Convert directory tree into .lzm compressed module"
echo "usage: $0 source_directory output_file.lzm"
exit 1
fi
create_module "$1" "$2"
if [ $? != 0 ]; then echo "error building compressed image"; exit 1; fi